build: Make PREFIX work by fixing LIBDIR
authorKeir Fraser <keir.fraser@citrix.com>
Thu, 31 Jan 2008 09:38:34 +0000 (09:38 +0000)
committerKeir Fraser <keir.fraser@citrix.com>
Thu, 31 Jan 2008 09:38:34 +0000 (09:38 +0000)
commit4c4ca29ff93143cac29b32cb49c58570244a03b7
tree37962fa40e67c7cf759bdd788a53fd32a3efde94
parent2179dc47cf8d85b478a71da091ee44cdab12017b
build: Make PREFIX work by fixing LIBDIR

In the current tree, setting PREFIX does not work very well.  This is
because of confusion about the meaning of LIBDIR.  In some places it
is the pathname tail of directories containing libraries (lib, lib64
or lib/amd64).  But in other places it is a destination pathname
(implicitly, including any PREFIX).  This can result in PREFIX or /usr
being added the wrong number of times.

This patch splits LIBDIR into two variables, LIBLEAFDIR and
LIBDIR.  LIBDIR is the directory into which Xen libraries and other
similar code is to be placed, and includes any PREFIX.  LIBLEAFDIR is
just the library tail and can be appended to various different
prefixes; for example, to construct the X11 library directory for -L.

Neither variable contains the value of DESTDIR, which is of course
used only to redirect the results of `make install' when desired.

Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
Config.mk
config/StdGNU.mk
config/SunOS.mk
config/x86_64.mk
tools/Rules.mk